home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / glyphpro / glyphpro.dpr < prev    next >
Text File  |  1996-04-08  |  287b  |  16 lines

  1. program Glyphpro;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1},
  6.   Options in 'OPTIONS.PAS' {FormOptions},
  7.   Seldir in 'SELDIR.PAS' {FormSelectDirectory};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Title := 'GlyphPro';
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.